home *** CD-ROM | disk | FTP | other *** search
/ Aminet 14 / Aminet 14 - Oct 1996.iso / Tools / MUI / Developer / C / DLib / Request.c < prev   
C/C++ Source or Header  |  1996-07-13  |  313b  |  11 lines

  1. #include <clib/muimaster_protos.h>
  2. #include <pragmas/muimaster_pragmas.h>
  3.  
  4. extern struct Library *MUIMasterBase;
  5.  
  6. LONG MUI_Request(APTR app, APTR win, LONGBITS flags, char *title, char *gadgets, char *format, ...)
  7. {
  8.  return(MUI_RequestA(app, win, flags, title, gadgets, format, (APTR) (((ULONG)&format)+4) ));
  9. }
  10.  
  11.